DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomDataSet Class / FrameSubSet(IEnumerable<UInt32>) Method
Requested frame numbers






In This Topic
    FrameSubSet(IEnumerable<UInt32>) Method
    In This Topic
    Generates a new DicomDataSet as a subset of the current instance as described in supplement 119
    Syntax
    'Declaration
     
    
    Public Function FrameSubSet( _
       ByVal Frames As System.Collections.Generic.IEnumerable(Of UInteger) _
    ) As DicomDataSet
    'Usage
     
    
    Dim instance As DicomDataSet
    Dim Frames As System.Collections.Generic.IEnumerable(Of UInteger)
    Dim value As DicomDataSet
     
    value = instance.FrameSubSet(Frames)
    public DicomDataSet FrameSubSet( 
       System.Collections.Generic.IEnumerable<uint> Frames
    )
    public function FrameSubSet( 
        Frames: System.Collections.Generic.IEnumerable
    ): DicomDataSet; 
    public function FrameSubSet( 
       Frames : System.Collections.Generic.IEnumerable
    ) : DicomDataSet;
    public: DicomDataSet* FrameSubSet( 
       System.Collections.Generic.IEnumerable<uint>* Frames
    ) 
    public:
    DicomDataSet^ FrameSubSet( 
       System.Collections.Generic.IEnumerable<uint>^ Frames
    ) 

    Parameters

    Frames
    Requested frame numbers

    Return Value

    Subset DicomDataSet that includes the requested frames
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also